home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / powerb5.zip / P5UTL007.TIP < prev    next >
Text File  |  1993-06-01  |  2KB  |  51 lines

  1. We wrote a QBASIC screen-blanking program that displays a
  2. user-supplied message and a digital clock, both of which
  3. randomly change color and screen position. With this
  4. program, you can tell other people in the office where you
  5. are with messages like "Out to lunch" or "At a meeting; back
  6. by noon." What's more, co-workers who know you have this
  7. program can leave you messages you can't possibly miss, like
  8. 'John Smith called. Phone 555-1234'. Finally, since the
  9. message and time move across an otherwise blank screen, this
  10. program protects your monitor from burn-in.
  11.  
  12. To prepare the program, type it into an ASCII text file
  13. named SAVER.BAS. To run it, enter the command QBASIC /RUN
  14. <path>\SAVER, where <path> is the path to SAVER.BAS. After
  15. you've entered a message and the program starts displaying
  16. that message and the time on your screen, you can return to
  17. DOS by pressing any key. The program should work well on any
  18. machine that's running DOS 5.0. You can delete the lines
  19. that set the color 40 and 100 if you don't happen to have a
  20. color monitor. The interval between screen changes can be
  21. controlled by changing the constant (we used 1000) in line
  22. 120. You can decrease the type size by changing W = 40 to W
  23. = 80 on line 5; in fact, some graphics adapters may require
  24. you to do this.
  25.  
  26. Dan and Mary Dean
  27. Fairborn, Ohio
  28.  
  29. Editor's Note: This program is simplicity itself. I made
  30. only a few modifications: I eliminated the darker colors
  31. (which at a distance don't show up well or sometimes at
  32. all), made the positions of the date and message more
  33. random, made it easier to use 40-column mode, and allowed
  34. the user to exit with a single keystroke.
  35.  
  36. If the command line to call this program seems cumbersome,
  37. you can put it in a one-line batch file and put the batch
  38. file in a directory that's listed in your AUTOEXEC.BAT'S
  39. PATH command. One caveat: If someone leaves you a message
  40. with this program, make sure you jot it down before you
  41. press a key. Otherwise, it will be gone for good when you
  42. return to DOS.
  43.  
  44.  
  45. Title: Simple Screen Saver
  46. Category: UTL
  47. Issue Date: September, 1992
  48. Editor: Brett Glass
  49. Supplementary Files: P5UTL\SAVER.BAS
  50. Filename: P5UTL007.TIP
  51.